home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 003 / _family / !FamTools / Length < prev    next >
Text File  |  1994-06-14  |  187b  |  6 lines

  1. #Print the longest line in a file.
  2. #Version 1.00 (15 Jun 1994)
  3.  
  4. length($0) > max { max = length($0); line = $0; num = NR; }
  5. END { print FILENAME " line " num " length " max ":\n" line; }
  6.